home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000338_news@columbia.edu _Fri Jun 2 10:38:40 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id KAA14171
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Fri, 2 Jun 2000 10:38:40 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA17260
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 2 Jun 2000 10:38:39 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA27842
  10.     for kermit.misc@watsun.cc.columbia.edu; Fri, 2 Jun 2000 10:24:14 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: fdc@columbia.edu (Frank da Cruz)
  13. Subject: Re: Translate command does not check the validity of input data?
  14. Date: 2 Jun 2000 14:24:12 GMT
  15. Organization: Columbia University
  16. Message-ID: <8h8g2c$r5v$1@newsmaster.cc.columbia.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. In article <YGMZ4.573$xt4.4937@read2.inet.fi>,
  20. ralf.strandell <ralf.strandell@silja.com> wrote:
  21. : >: Kermits translate command seems to drop one bit _without error messages_.
  22. : >: This character is 8 bit 11001000 and after translate it becomes 7 bit
  23. : >: 1001000.  Is this a feature or a bug or something in between?
  24. : > Under what circumstances does this occur?
  25. :         Unixware 7.0.1 operating system, Intel processor
  26. :         C-Kermit 7.0.197 built with default ini-file location
  27. :         The translate command has a serious bug so we applied the following
  28. :         temporary bug fix:
  29. :         Command used:
  30. :                 set file ucs byte-order big-endian
  31. :                 translate infile swedish latin1 outfile
  32. :                 set file ucs byte-order little-endian
  33. :         And now translate works just fine (if the data is free from errors)
  34. Right.  This bug (the TRANSLATE command does not work correctly on machines
  35. with Little Endian architecture) will be fixed in the next release.
  36.  
  37. :         But if the infile ( supposed to be 7 bit swedish ascii )
  38. :         contains a character that is 8 bits then
  39. :         this command quietly strips the 8th bit and somebody
  40. :         is going to have a funny name on his magazine/card/etc.
  41. This is indeed a bug.  Since 7-bit character sets such as the national
  42. versions of ISO 646 do not contain any 8-bit characters, then any 8-bit
  43. character in the source set should be translated to "?", rather than having
  44. its 8th bit stripped.  This will be fixed in the next release.
  45.  
  46. : ...  it would be great if things lite this would be
  47. : echoed to screen or written to a log. Such a feature could be activated for
  48. : example when a certain level of debugging is requested on command line.
  49. : ( maybe it is allready ? )
  50. This is a reasonable request; I'll add it to the long, long, long list.
  51.  
  52. By the way, the C-Kermit 7.0 bug list is here:
  53.  
  54.   http://www.columbia.edu/kermit/ck70bugs.html
  55.  
  56. If anybody has anything to add, please let us know at:
  57.  
  58.   kermit-support@columbia.edu
  59.  
  60. - Frank